home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 1 / Mac Magazin and MacEasy Magazine CD - Issue 01.iso / Sharewarebibliothek / Powermac / C64 / SOURCE / Resources.h < prev    next >
C/C++ Source or Header  |  1994-06-06  |  1KB  |  79 lines

  1. typedef enum {
  2.     kVICWindow=0,
  3.     kDirWindow=1,
  4.     kAboutWindow=2
  5. } WindowIDType;
  6.  
  7. typedef enum {
  8.     kSleeping=0,
  9.     kRunning=1
  10. } ProgramModeType;
  11.  
  12. typedef enum {
  13.     kErrorAlert=128,
  14.     kSplashDialog=129,
  15.     kPrefDialog=130,
  16.     kAboutDialog=131,
  17.     kFloppyAlert=132
  18. } DLOGType;
  19.  
  20. typedef enum {
  21.     kErrorStrings=200,
  22.     kInternalErrorStrings=600,
  23.     kWindowStrings=500,
  24.         kRunningWindow=1,
  25.         kSuspendedWindow=2
  26.  
  27. } STRSType;
  28.  
  29. typedef enum {
  30.     kBASICROM=128,
  31.     kCHARROM=129,
  32.     kKERNELROM=130
  33. } ROMSType;
  34.  
  35. typedef enum {
  36.     kAppleMenu=128,
  37.         kAbout=1,
  38.     
  39.     kFileMenu=129,
  40.         kOpenRAM=1,
  41.         kSaveRAM=2,
  42.         kReset=4,
  43.         kPageSetup=6,
  44.         kPrint=7,
  45.         kPrefs=9,
  46.         kQuit=11,
  47.         
  48.     kEditMenu=130,
  49.         kUndo=1,
  50.         kCut=3,
  51.         kCopy=4,
  52.         kPaste=5,
  53.         kClear=6,
  54.         
  55.     kDeviceMenu=131,
  56.         kCreateImage=1,
  57.         kSelectImage=2,
  58.         kDirectory=3,
  59.         kCopyTo=4,
  60.         kChdir=6,
  61.         kNewPFile=8,
  62.         kAppendPFile=9,
  63.         kXvert=10,
  64.         kDisplayPFile=11,
  65.         kLoadTape=13
  66. } MENUType;
  67.  
  68. typedef enum {
  69.     kCommieCursor=128,
  70.     kDiskCursor=129
  71. } CRSRType;
  72.  
  73. typedef enum {
  74.     kBWVIC=128,
  75.     kDirList=129,
  76.     kColorVIC=130
  77. } VICWINDType;
  78.  
  79.